home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / EXCEPT.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-30  |  282 b   |  19 lines

  1. #ifndef  EXCEPT_H
  2. #define  EXCEPT_H
  3.  
  4. #include  "common.hpp"
  5.  
  6. class myExceptionHandler;
  7.  
  8. class myExceptionHandler : public IMessageBox
  9. {
  10.    private:
  11.  
  12.    public :
  13.       myExceptionHandler  (IString* title,
  14.                            IString* Message);
  15. } ;
  16.  
  17. #endif
  18.  
  19.